home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter9 / brothers / UncleFrank.java < prev   
Text File  |  1995-12-31  |  452b  |  21 lines

  1. package brothers;
  2.  
  3. // ------------------ The Uncle Class ----------------- //
  4.     public class UncleFrank {
  5.  
  6.       Dad A = new Dad();
  7.  
  8.       public UncleFrank() {
  9. //        A.sportscar    = true; // ERROR! Dad only!
  10.         A.fishing_boat = true; // no problem
  11.         A.golf_clubs   = true; // go ahead
  12. //        A.familycar    = true; // ERROR! Dad and Son only!
  13.         A.lawnmower    = true; // Yeah, sure, anybody.
  14.  
  15. // A.pubprot=true;
  16.         }
  17.       }
  18.     
  19.  
  20.  
  21.